home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / c / lcc / readme < prev    next >
Text File  |  1994-10-27  |  2KB  |  64 lines

  1. lcc is the retargetable compiler for ANSI C described in our book
  2. `A Retargetable C Compiler: Design and Implementation'
  3. (Benjamin/Cummings, 1995, ISBN 0-8053-1670-1), which will be available
  4. in December 1994. lcc is in production use at Princeton University and
  5. AT&T Bell Laboratories.
  6.  
  7. The public distribution directory contains the following files.
  8.  
  9. README    this file.
  10.  
  11. install.{ps,txt}
  12.     describes the distribution and gives installation
  13.     instructions. install.ps is the PostScript generated from
  14.     the HTML document, install.html, which is included in the
  15.     the distribution.
  16.  
  17. X.Y.tar.{Z,gz}
  18.     compressed tar files for the distribution of version X.Y,
  19.     e.g., 3.0.tar.Z the tar file compressed with compress. This
  20.     distribution includes user documentation, the front end, the
  21.     driver program, code generators for the SPARC, MIPS R3000 and
  22.     x86, and the code-generator generator that produced them. A
  23.     .gz file is the tar file compressed with gzip instead
  24.     of compress.
  25.  
  26. The distribution is available via `anonymous' ftp from
  27. ftp.cs.princeton.edu (128.112.152.13) in the directory pub/lcc.
  28. Obtaining and extracting the distribution into its own directory is
  29. accomplished by the following commands. Replace `3.0' with the latest
  30. version, which is the only one typically available; versions like
  31. `3.0a' identify minor updates and versions like `3.1beta' identify
  32. pre-releases (which might be incomplete). As suggested, use your login
  33. as the password, and use ftp's binary transfer mode.
  34.  
  35. mkdir lcc
  36. cd lcc
  37. ftp ftp.cs.princeton.edu
  38. anonymous
  39. yourlogin
  40. cd pub/lcc
  41. binary
  42. get 3.0.tar.Z dist.tar.Z
  43. quit
  44. zcat dist.tar | tar xpof -
  45. rm dist.tar.Z
  46.  
  47. To be added to the lcc mailing list, send a message with the 1-line body
  48.  
  49. subscribe lcc
  50.  
  51. to majordomo@cs.princeton.edu. This line must appear in the message
  52. body; `Subject:' lines are ignored. To learn more about mailing lists
  53. served by majordomo, send a message with the body `help' to
  54. majordomo@cs.princeton.edu. There is also an lcc-bugs mailing list for
  55. reporting bugs.
  56.  
  57. Additional information about lcc and about our book is available on the
  58. WWW at URL http://www.cs.princeton.edu/software/lcc.
  59.  
  60.  
  61. Chris Fraser / cwf@research.att.com
  62. David Hanson / drh@cs.princeton.edu
  63. Thu Sep  8 10:22:23 EDT 1994
  64.